home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / MUSIC / H476.ZIP / INSTALL.BAT next >
DOS Batch File  |  1993-09-01  |  3KB  |  109 lines

  1. @echo off
  2. if "%1"== "" goto error
  3. if "%1"=="a" goto start
  4. if "%1"=="A" goto start
  5. if "%1"=="b" goto start
  6. if "%1"=="B" goto start
  7. if "%1"=="c" goto start
  8. if "%1"=="C" goto start
  9. if "%1"=="d" goto start
  10. if "%1"=="D" goto start
  11. if "%1"=="e" goto start
  12. if "%1"=="E" goto start
  13. if "%1"=="f" goto start
  14. if "%1"=="F" goto start
  15. if "%1"=="g" goto start
  16. if "%1"=="G" goto start
  17. if "%1"=="h" goto start
  18. if "%1"=="H" goto start
  19. if "%1"=="i" goto start
  20. if "%1"=="I" goto start
  21. if "%1"=="j" goto start
  22. if "%1"=="J" goto start
  23. if "%1"=="k" goto start
  24. if "%1"=="K" goto start
  25. if "%1"=="l" goto start
  26. if "%1"=="L" goto start
  27. if "%1"=="m" goto start
  28. if "%1"=="M" goto start
  29. if "%1"=="n" goto start
  30. if "%1"=="N" goto start
  31. if "%1"=="o" goto start
  32. if "%1"=="O" goto start
  33. if "%1"=="p" goto start
  34. if "%1"=="P" goto start
  35. if "%1"=="q" goto start
  36. if "%1"=="Q" goto start
  37. if "%1"=="r" goto start
  38. if "%1"=="R" goto start
  39. if "%1"=="s" goto start
  40. if "%1"=="S" goto start
  41. if "%1"=="t" goto start
  42. if "%1"=="T" goto start
  43. if "%1"=="u" goto start
  44. if "%1"=="U" goto start
  45. if "%1"=="v" goto start
  46. if "%1"=="V" goto start
  47. if "%1"=="w" goto start
  48. if "%1"=="W" goto start
  49. if "%1"=="x" goto start
  50. if "%1"=="X" goto start
  51. if "%1"=="y" goto start
  52. if "%1"=="Y" goto start
  53. if "%1"=="z" goto start
  54. if "%1"=="Z" goto start
  55. goto end
  56.  
  57. :START
  58. cls
  59. echo.
  60. echo                 ╔═════════════════════════════════════════════╗
  61. echo                 ║                                             ║
  62. echo                 ║  Please wait while the files are copied !   ║
  63. echo                 ║                                             ║
  64. echo                 ╚═════════════════════════════════════════════╝
  65. echo.
  66. echo Making directory %1:\WAVES
  67. md %1:\WAVES
  68. echo.
  69. echo Copying files !
  70. copy *.wri %1:\waves
  71. copy *.txt %1:\waves
  72. copy \waves\*.* %1:\waves
  73. %1:
  74. cd\
  75. cd\waves
  76. echo.
  77. echo.
  78. echo    Installation complete !
  79. echo.
  80. echo    Run Windows and sample the files !
  81. echo.
  82. echo.
  83. goto end
  84.  
  85.  
  86. :ERROR
  87. cls
  88. echo.
  89. echo.
  90. echo                 ╔═════════════════════════════════════════════╗
  91. echo                 ║                                             ║
  92. echo                 ║  Type:  "INSTALL C" to install to drive C:  ║
  93. echo                 ║                                             ║
  94. echo                 ╚═════════════════════════════════════════════╝
  95. echo.
  96. echo                 You will need approx. 730k of hard disk space
  97. echo                         to install the files correctly !
  98. echo.
  99. echo                 Files will be installed in the directory  \WAVES
  100. echo.
  101. echo                              on your selected drive !
  102. echo.
  103. echo.
  104. echo.
  105. goto end
  106.  
  107. :END
  108. 
  109.